import React, { useState } from 'react'; import { Menu, X, Phone, Mail, MapPin, Linkedin, Instagram, MessageCircle, TrendingUp, Search, Layout, Code, Award, CheckCircle, Zap, BarChart, Share2, Megaphone, ArrowRight } from 'lucide-react'; const App = () => { const [isMenuOpen, setIsMenuOpen] = useState(false); const [formStatus, setFormStatus] = useState(null); const toggleMenu = () => setIsMenuOpen(!isMenuOpen); const handleFormSubmit = (e) => { e.preventDefault(); setFormStatus('success'); setTimeout(() => setFormStatus(null), 3000); e.target.reset(); }; const navLinks = [ { name: 'Home', href: '#home' }, { name: 'About', href: '#about' }, { name: 'Services', href: '#services' }, { name: 'Features', href: '#features' }, { name: 'Contact', href: '#contact' }, ]; const services = [ { icon: , title: 'Digital Marketing', desc: 'Comprehensive digital strategies to boost your brand presence and drive conversions across all channels.' }, { icon: , title: 'Social Media Marketing', desc: 'Engaging content and targeted campaigns to grow your audience on platforms like Instagram, Facebook, and LinkedIn.' }, { icon: , title: 'SEO Services', desc: 'Optimizing your website to rank higher on search engines, driving organic traffic and increasing visibility.' }, { icon: , title: 'SEO Analyst', desc: 'In-depth website audits, competitor analysis, and keyword research to build data-driven growth strategies.' }, { icon: , title: 'Website Designing', desc: 'Creating stunning, user-friendly, and responsive UI/UX designs that reflect your brand identity.' }, { icon: , title: 'Website Making', desc: 'End-to-end web development to bring your designs to life with robust, fast, and scalable code.' }, ]; const features = [ { icon: , title: 'Fast Execution', desc: 'Rapid deployment of marketing campaigns.' }, { icon: , title: 'Data-Driven ROI', desc: 'Focus on metrics that actually matter.' }, { icon: , title: 'Quality Assurance', desc: 'Premium standard in every project.' }, ]; const whyChooseUs = [ "Proven track record of increasing local and global digital footprint.", "Customized strategies tailored to your specific business niche.", "Transparent reporting and continuous performance optimization.", "Local expertise based right here in Calicut.", "End-to-end solutions from web design to marketing execution." ]; return (
{/* Navigation */} {/* Hero Section */}
Based in Calicut, Kerala

Hi, I'm Marina!
Digital Marketing Specialist

I help brands grow their digital presence through data-driven SEO, engaging social media strategies, and stunning website designs. Let's turn your clicks into clients.

Marina Joseph - Digital Marketing Specialist
{/* About Section */}

About Me

Marina Joseph

Welcome! I am a passionate Digital Marketing Specialist and Web Designer based in the vibrant city of Calicut. With a deep understanding of the digital landscape, I bridge the gap between technical web design and strategic marketing.

My journey involves helping businesses—from local startups to established brands—optimize their online presence. Whether it's ranking higher on Google through meticulous SEO, designing a highly converting website, or running engaging social media campaigns, I handle it all.

Location

Calicut, Kerala

Phone

+91 9567753842

{/* Services Section */}

My Services

Comprehensive digital solutions to elevate your brand.

{services.map((service, index) => (
{React.cloneElement(service.icon, { className: "w-8 h-8 transition-colors duration-300 group-hover:text-white" })}

{service.title}

{service.desc}

))}
{/* Features & Why Choose Us Section */}
{/* Why Choose Us */}

Why Choose Us?

I don't just build websites or run ads; I create digital ecosystems designed to generate real revenue for your business.

{whyChooseUs.map((item, index) => (
{item}
))}
{/* Features */}

Core Features

{features.map((feat, index) => (
{React.cloneElement(feat.icon, { className: "w-8 h-8" })}

{feat.title}

{feat.desc}

))}
{/* Contact Section */}

Get In Touch

Ready to elevate your digital presence? Fill out the form below or reach out directly.

{/* Contact Info Cards */}

Call/WhatsApp

+91 9567753842

Location

Calicut, Kerala, India

Connect Socially

{/* Contact Form */}

Send a Message

{formStatus === 'success' && (
Thank you! Your message has been sent successfully. I will contact you soon.
)}
{/* Name and Contact */}
{/* Email and Place */}
{/* Highest Qualification and Specialization */}
{/* Footer */}
); }; export default App;